home *** CD-ROM | disk | FTP | other *** search
- // PartitionMagic Script File
-
- // This script file is an example of performing a cluster analysis and setting
- // the cluster size of selected partitions.
-
- // Scenario:
- // A disk contains two primary FAT partitions.
- //
- // The user wishes to view an analysis of the partitions, set the cluster size
- // of the first partition to 16K and set the cluster size of the second
- // partition to whatever PartitionMagic recommends.
-
- // Show a cluster analysis of the first partition
- Select Disk 1
- Select Partition 1
- Cluster Analyzer
-
- // Set the cluster size to 16K
- Cluster Analyzer /SetClusterSize=16
-
- // Show a cluster analysis of the second partition
- Select Partition 2
- Cluster Analyzer
-
- // Set the cluster size to the recommended value
- Cluster Analyzer /SetClusterSize=Recommended
-